home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWrap / Source / ListMatrix.h < prev    next >
Text File  |  1991-09-15  |  431b  |  23 lines

  1. #import <appkit/Matrix.h>
  2.  
  3. @interface ListMatrix:Matrix
  4. {
  5.     id    matrixCache, cellCache, activeCell;
  6.     BOOL controlDrag;
  7. }
  8.  
  9. /* instance methods */
  10. - cellListIncludeAll:(BOOL) all;
  11. - (BOOL)addToList:sender;
  12.  
  13. - init;
  14. - free;
  15. - mouseDown:(NXEvent *)theEvent;
  16. - drawSelf:(NXRect *)rects :(int)count;
  17. - setupCacheWindows;
  18. - sizeCacheWindow:cacheWindow to:(NXSize *)windowSize;
  19.  
  20. - (BOOL)controlDrag;
  21. - setControlDrag:(BOOL) asdf;
  22. @end
  23.